superscalar architecture - перевод на итальянский
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

superscalar architecture - перевод на итальянский

CPU THAT IMPLEMENTS INSTRUCTION-LEVEL PARALLELISM WITHIN A SINGLE PROCESSOR
Superscalar architecture; Superscaler; Super-scalar architecture; Superscalar; Superscalar execution
  • CRAY T3e]] supercomputer with four ''superscalar'' [[Alpha 21164]] processors
  • Simple superscalar pipeline. By fetching and dispatching two instructions at a time, a maximum of two instructions per cycle can be completed. (IF = instruction fetch, ID = instruction decode, EX = execute, MEM = memory access, WB = register write-back, ''i'' = instruction number, ''t'' = clock cycle [i.e. time])

superscalar architecture         
Architettura superscalare (Design dell"elaboratore che gli consente di attuare più di una operazione alla volta)
computer architecture         
  • Block diagram of a basic computer with uniprocessor CPU. Black lines indicate data flow, whereas red lines indicate control flow. Arrows indicate the direction of flow.
SET OF RULES AND METHODS THAT DESCRIBE THE FUNCTIONALITY, ORGANIZATION AND IMPLEMENTATION OF COMPUTER SYSTEMS
Computer Architecture; Computer architectures; Computer design; UISA; Computer systems architecture; Computing architecture; Computer architect; History of computer architecture
architettura di computer (progettazione dei diversi elementi del computer)
Romanesque style         
  • St-Sernin basilica]], [[Toulouse]], France: elevation of the east end (1080–1120)
ARCHITECTURAL STYLE OF MEDIEVAL EUROPE
Romanesque style; Romanesque Art and Architecture; Romanesque Style; Burgundian Romanesque Style; Roman (architecture); Romanesque Architecture; Apulian Romanesque architecture; Romanesque arch; Early Romanesque; Romanesque church; Romanesque (architecture); Late Romanesque style; Romanesque architectural style
n. stile romanico, stile architettonico che prevalse in Europa fra il nono e il dodicesimo secolo

Определение

superscalar
<architecture> A superscalar architecture is a uniprocessor that can execute two or more scalar operations in parallel. Some definitions include superpipelined and VLIW architectures; others do not. Superscalar architectures (apart from superpipelined architectures) require multiple functional units, which may or may not be identical to each other. In some superscalar processors the order of instruction execution is determined statically (purely at compile-time), in others it is determined dynamically (partly at run time).

Википедия

Superscalar processor

A superscalar processor is a CPU that implements a form of parallelism called instruction-level parallelism within a single processor. In contrast to a scalar processor, which can execute at most one single instruction per clock cycle, a superscalar processor can execute more than one instruction during a clock cycle by simultaneously dispatching multiple instructions to different execution units on the processor. It therefore allows more throughput (the number of instructions that can be executed in a unit of time) than would otherwise be possible at a given clock rate. Each execution unit is not a separate processor (or a core if the processor is a multi-core processor), but an execution resource within a single CPU such as an arithmetic logic unit.

In Flynn's taxonomy, a single-core superscalar processor is classified as an SISD processor (single instruction stream, single data stream), though a single-core superscalar processor that supports short vector operations could be classified as SIMD (single instruction stream, multiple data streams). A multi-core superscalar processor is classified as an MIMD processor (multiple instruction streams, multiple data streams).

While a superscalar CPU is typically also pipelined, superscalar and pipelining execution are considered different performance enhancement techniques. The former executes multiple instructions in parallel by using multiple execution units, whereas the latter executes multiple instructions in the same execution unit in parallel by dividing the execution unit into different phases.

The superscalar technique is traditionally associated with several identifying characteristics (within a given CPU):

  • Instructions are issued from a sequential instruction stream
  • The CPU dynamically checks for data dependencies between instructions at run time (versus software checking at compile time)
  • The CPU can execute multiple instructions per clock cycle